home *** CD-ROM | disk | FTP | other *** search
/ Agent Central Host Computer / Agent - Central Host Computer.iso / _SETUP.1 / waycodes.sql < prev    next >
Text File  |  2000-05-12  |  625b  |  18 lines

  1. /* RCSVER $Id: waycodes.sql,v 1.1 1999-06-03 13:12:54-05 randy CURRENT $ */
  2. /* *************************************************************************
  3. *        Copyright (C) 1999, Agent Systems, Inc. All Rights Reserved.
  4. *
  5. * Name:        waycodes.sql
  6. * Date:        05/24/1999
  7. * memo:        Randy Wood
  8. * Description:    Create the waycodes table. This table contains event code 
  9. *        definitions for wayfarer events.          
  10. * Changes:
  11. ************************************************************************* */
  12. CREATE TABLE waycodes
  13. (
  14.     code    NUMBER(38),
  15.     descr    VARCHAR2(30),
  16.         CONSTRAINT pk_waycodes PRIMARY KEY (code)
  17. );
  18.